单击命令按钮时,下列程序代码的执行结果为______。Private Function PickMid(xStrAs String)As String Dim tempStrAs String Dim strLenAs IntegertempStr=“”strLen=Len(xStr)i=1 Do While i<=strLen/2 tempStr=tempStr+Mid(xStr,i,1)+Hid(xStr,strLen-i+1,1) i=i + 1LoopPickMid=tempStr End FunctionPrivate SubCommand1_Click() Dim FirstStrAs StringFirstStr=“abcdef”Print PickMid(FirstStr) End Sub